/* On travaille sur la balise body, donc sur TOUTE la page */
body
{
	background-color: black; /* Le fond de la page sera noir */
	color: white; /* Le texte de la page sera blanc */
}


@font-face {
	font-family: 'ballpark';
	src:url('polices/ballpark.eot') format('eot'),
		url('polices/ballpark.woff') format('woff'),
		url('polices/ballpark.ttf') format('truetype'),
		url('polices/ballpark.svg') format('svg');
}

@font-face {
	font-family: 'dayrom';
	src:url('polices/dayrom.eot') format('eot'),
		url('polices/dayrom.woff') format('woff'),
		url('polices/dayrom.ttf') format('truetype'),
		url('polices/dayrom.svg') format('svg');
}

h1 /* Utilisation de la police qu'on vient de définir sur les titres */
{
	font-family: 'ballpark', Arial, serif;
	text-align: center;
}

h2 /* Utilisation de la police qu'on vient de définir sur les titres */
{
	font-family: 'dayrom', Arial, serif;
}

h3
{
	font-style: italic;
}

h4
{
	font-weight: bold;
}

h5
{
	text-decoration: blink;
}
.souligne
{
	text-decoration: underline;
}
.barre
{
	text-decoration: line-through;
}
.ligne_dessus
{
	text-decoration: overline;
}

p
{
	text-align: justify;
}

.signature
{
	text-align: right;
}

.imageflottante
{
	float: left;
}

.dessous
{
	clear: both;
}

mark
{
	/* La couleur de fond prend le pas sur celle de toute la page
	*/
	background-color: red;
	color: black;
}